From 5067f69ff1def38dc0f34fed57bb575300212177 Mon Sep 17 00:00:00 2001 From: Li Yuan Date: Fri, 29 Jan 2010 14:16:24 +0800 Subject: [PATCH] Bug #608410. Set cursor position after inserting text. --- modules/other/gail/gailentry.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/other/gail/gailentry.c b/modules/other/gail/gailentry.c index 5a7ba4a3b3..d72a9235d6 100644 --- a/modules/other/gail/gailentry.c +++ b/modules/other/gail/gailentry.c @@ -888,6 +888,7 @@ gail_entry_insert_text (AtkEditableText *text, return; gtk_editable_insert_text (editable, string, length, position); + gtk_editable_set_position (editable, *position); } static void -- 2.30.2